home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / amiblitz2_227b2 / amiblitzHistory.txt < prev    next >
Text File  |  2002-10-27  |  15KB  |  374 lines

  1. Look at bugs2.2
  2. This is a source that collect all bugs you report and i can reproduce and
  3. are fixed now.If you find a bug please add it to the file and send it to me
  4. so that i can debug and see the error.
  5.  
  6.  
  7. Knownlimits:  "öäü" after ; drop chars >128
  8.       2.27b1
  9.  
  10. .News 2.27b2:
  11.  
  12.        You can insert Instruction Pars in a dialoge.Press CTRL+HELP
  13.        for this.If the win is open you can click also on the instruction
  14.        to show the pars in the dialoge.Add Code add the code or modify it if
  15.        there was code after instruction
  16.  
  17.        Better comment display and chars after ;:@ is not draw as a comment
  18.  
  19.        Added ped hotkeys:
  20.      
  21.        lamiga+a jump to last position where you add chars
  22.        lamiga+shift+1/2/3 save local bookmark
  23.        lamiga+1/2/3 jump to local bookmark
  24.  
  25.        Tooltype standardeditmode change return key to standard
  26.        (return split line)
  27.        backspace on first column do a join line
  28.        Pressing del on a marked block clear the block and do a displaybeep warning
  29.  
  30.  
  31.        You can use upto 5 FPU registervars do it with regload var1 var2.
  32.        which increase speed on your Code.fpu load/store convert always single
  33.        to extend this give you a speed boost on all Systems
  34.        If vars are changed when they are on register do a regsave.
  35.        It store all register to memory.
  36.  
  37.       strings can cast to longs(char num cannot be greater than typesize)
  38.       compare work with byte word long and float
  39.        in newsyntax mode
  40.  
  41.     Example:
  42.       x.l=@"ILBM":if x=@"CMAP" then .....:if a.w=@"ab"
  43.       Give lot speed instead of using asc(x)
  44.  
  45.       Added AB2fdconvert
  46.       enhanced bb2convert that handle reserved AB2 numbers correct
  47.       and also scan
  48.       blitz:userlibs/beta dir for existing libs to get no clashes
  49.  
  50.       ; Highlight fix highlight now at first ;
  51.  
  52.       \\char add char with hexbyte to a string in newsyntaxmode (optimize 4)
  53.       You must write always both chars (ex: \\0a for 0xa)
  54.       print "\\22 Hello \\22"  print the text " Hello "
  55.       If you want print \\ you need write \\\\ 4 backslashs
  56.  
  57.       \\R05char repeat char 5 times print "\\R09*Hello" print"********* Hello"
  58.  
  59.       Tooltype STARTDIR add.You can choose a default directory now for startup
  60.  
  61.       Does now automatic switch to nontoken Mode so you can
  62.       edit .guide and .txt Files in ped.Try the amiblitz History it have some bookmarks set
  63. Note: if you maybe get wrong mode (nothing is impossible)
  64.       go to preferences and set the tokenmode manuel (no data lost possible)
  65.       If you totally unhappy with this feature
  66.       Tooltype no_auto_tokenize can set
  67.  
  68. Ped can now handle editpad/YAM Clipboard data
  69.  
  70. writetype/readtype command add to load/save a complete Type
  71.  
  72.      Use only with this compiler Version or you get runtime errors
  73.  
  74.      stop commands are ignored in release builds
  75.  
  76.      No error no crash now
  77. debug of extern programs
  78.      Type DEBUG as first command in your programm and you can debug
  79.      it when you have a plugin or start from WB or cli
  80.      Notes: dont let such a program reach a stop when ped is not run
  81.             Also the source of this program must be visible in ped
  82.             or you see no (wrong Source) in reddebug
  83.  
  84. BTW:  Ped(AMiblitz) can now debug since this version with reddebug
  85.  
  86.  
  87. .Fixes 2.27:
  88.        Fixed end in Macros report Arne Lunde
  89.        Fixed type\a,1,2,3,4,5 go wrong if start on not word alligned report Arne Lunde
  90.        Fixed runerrsof sometimes give line 1111 Error  report Thilo Köhler
  91.        Fixed  missed if without endif                  report from Arne Lunde
  92.        With luck it fixes the 2dstrategie Problem
  93.  
  94.        fpu optimizer fix:
  95.        sa.l = a.l-testfunc{Str$("test")}
  96.        optimize 1 fix #num-1 sometimes work wrong
  97.       
  98.        does put fpu regs illegal to stack
  99.        (because AB2 think ustr$ use FPU)
  100.                                  Thanks to Steffen Nitz for the example Code
  101.        optimizer 1/2 fixes       Thanks to Thilo Köhler for lots reports
  102.        Please try optimizer out it seem 100% stable now
  103.        Many cmake/macro fixes    thanks to Arne Lunde for report
  104.  
  105.        !test {var} give wrong highlightcolor
  106.      
  107.  windowslib: setfont fix
  108.  nielsrtlib: rtezstringrequest enforcerfix
  109.  wizardlib:  hierachiegadget working now see enhanced testprog how to use
  110.              updatet exampleprog wizard.bb2
  111.              added commands PeekUB PeekUW to read very fast unsigned bytes/words
  112.  string2func alibjsr $c702 call add for strcpy string working in libs
  113.              alibjsr $c704 call add for detecting
  114.              FPU/PPC/optimize/newsyntax compile in libs or AB2 on runtime
  115.   brexx.obj   type can now have a qualiefier entry
  116.   nclipboard.obj  Fixes for clips larger than 256 char and YAM clips
  117.   rimisclib.obj   Usefull Instruction found in unreleased rimisclib
  118.                   binstr ??? and nextargparsechar$ to parse to a choosable breakmark
  119.                   see guide for more
  120.  
  121. .reddebug 2.53 shows now no enforcer hits (i hope)
  122.               show Programmcounter in dissasembler window
  123.               Changing programcounter update disasm window
  124.               Clicking on # show now constants too
  125.       2.26
  126.  
  127. .News 2.26:
  128.       Give Error when use FAST in Functions wrong.See also the tips in the reuqester
  129.       If FAST give no error you can now sure that the function
  130.       use no memalloc and is as fast as a C Function
  131.  
  132.       Statement/Functions parameter num  increase from 6 to 10
  133.  
  134.       Added 020 Addressing Modes 0(a0,d0*2[4,8])
  135.       Added 020 Instruction extb.l which do ext.w d0:ext.l d0
  136. A german and a english version is available
  137.                           german translate from  cj-stroker (Franz Schlick )
  138.       rename ped_ger to ped to use the german ped version
  139.       and start amiblitz_ger
  140.  
  141.       Horizontal 128 char Limit increase to 250 chars
  142.       Horizontal realtime scroll
  143.       Dim in functions now work
  144.       *pointer="abcdef"  or *pointer=a$ give error now because it can not work
  145.       stable in praxis (reportet from Berga)
  146.       a$="123"
  147.       Print peek$(*pointer)
  148.       print out 123 because *pointer show to temporary stringbuffer
  149.  
  150.       Use *pointer.s="abcdef" or *pointer=&a$ instead
  151.  
  152.       Dim KEEP added.This allow redim without datalost
  153.       Check with:
  154.       dim KEEP a(dim1,....,changedim)
  155.       if getd0=0 then ..... ;d0 has value 0 if it fail
  156.       If it fail no old data is lost so you can continue your program
  157.       only you can NOT do is access more dimdata so you must set maxdim
  158.       to your old value back.
  159.       Keep in mind that only the last dimension can change
  160.  
  161.       Syntax command added:
  162.       Bit 0 (value 1) indicate that you must declare all vars now
  163.       with deftype/shared
  164.  
  165.       Bit 1 (the praxis solution idea from Thilo Köhler)(value 2)
  166.       see above but a myvar.l is also accepted
  167.       If you type later in your prog mvar AB2 report a error because
  168.       AB2 think you have written something wrong.Pointers you must
  169.       declare *pointer.l  Strings are accept with mystr$ or mystr.s
  170.  
  171.       Bit 2 (4)
  172.       Typeconvert to smaller sizes give a error.
  173.       To force it type + as first character in new line or after :
  174.  
  175.  
  176.       Shift+Help on objects work now too
  177.  
  178.       Syntax Error replaced with more concrete Tips
  179.  
  180.       Functioncalls can now have variable parameter count on newsyntaxmode
  181.           All missing parameters have then value 0
  182.  
  183.       Editor can work in 8/16 colors now (set tooltype newcolormode)
  184.       The blockmarkcolor ist then always the last color of the palette
  185.       So be sure to modify your palette to your needs.
  186.       A example ped.prefs is included for 16 Color sheme
  187.      
  188.       Allow now highlightcolor for functions/constants/macros/strings/types
  189.       Set Tooltypes functioncolor macrocolor constantcolor to desired
  190.       Palette value)
  191.       
  192. Fixes
  193.        Fixed chars >128 in data$
  194.        Fixed random enforcer ($114)hit when start a program from ped
  195.        Fixed fpu bug :while x>x AND x> x work with optimize 2
  196.        sometimes cursor show not column 65536 after error
  197.  
  198.        improved newsyntax to old compatibility
  199.        a mod b and soone  work now on newsyntax mode
  200.        Note: a and b /a or b give error use & or | instead
  201.         In asm instructions lsl asl you must type the : after the label
  202.         as in old mode
  203.  
  204.        asm fpu/ppc dont work in include files  (reportet Bug from Thilo Koehler)
  205.  
  206.        check for wizard.library and disassembler.library to avoid crashes
  207.        With missing disassembler.library you can work with AB2 but then the
  208.        reddebugger show only questionmarks in disasmview
  209.  
  210. .reddebug 2.52
  211.  put in blitz2:dbug
  212.  Better work on Systems with no Amiga Chipset
  213.  Pointers can now also show the content when click on the * before the name
  214.  
  215.       2.25
  216. .Fixes 2.25:
  217. compile/run should not create debuginfo (reportet Bug from Thilo Koehler)
  218. Parammeter Linejoining in macros now work
  219. Better Errorshow in macros/includes
  220.  
  221. .News 2.25:
  222. If AB2 found no FPU it show requester (FPU detect code from stats&Funcs)
  223. Tooltypes remarkforg/remarkbackg Tooltypes for remark color add
  224. Set both tooltypes to 0 if you dont like it or slowdown on slow 68k Speed
  225.  
  226. Add String from instructionhelp/newtypehelp in Source
  227. uselastpath command added:use the previous usepath setting
  228. end (program end in macros work)
  229. if then in macros work
  230. exithandlers can install to do automatic cleanup (new exitslib.obj)
  231.            
  232. .Fixes 2.24
  233. Better breakpointshow in Ped
  234.  
  235. .News 2.24:
  236. Save as/Navigation/Help work when a program run/debug from AB2
  237. Show in the errorequestertitle the sourceline of macros/includes (< > embedded)
  238. Macros are included on instructionhelper and onlinehelp.Type comments
  239. that should show in instructionshelp after the macro def
  240. ex: macro mymacro ;myhelp for this
  241. (see more in How to use in Libraryoverview)
  242. Embedded Help work only if compiled
  243. with  AB2 >2.23 so you must recompile your all.res to see comment line
  244. With newsyntax Mode (optimize >=4) label out of context range work
  245. :@ after comment execute following code  Ex. ;b=24 :@b=1 execute b=1
  246. Better Mark support.Shift+Click Set blockend to cursor pos(change mark range)
  247.  
  248. Reddebug: 2.51
  249. News:
  250. asmstep: If set to on (windows menu) you can step and set breakpoints every
  251.          asm instruction and so you can debug also librarys
  252. Limits:  only jsr/bsr  $xxxxxxxx can step into.(Use a breakpoint in other situation (-$2c(a6) etc)
  253.         
  254. CTRL+m   set the position of the disasmwindow to the current ped line
  255.          Navigate in ped to the sourceline you wish
  256. Mouseclick in disasmwindow open memwindow2 and show content of address
  257. ALT+ Mouseclick in disasmwindow show disasm at addr
  258. ALT+ MidButton return to old address (History up)
  259. AMIGA+MidButton (History down)
  260. p in disasmwindow shows at current programcounter
  261. Show evalresults in hex and binary too
  262. Key d Single Step Skip over gosub or run in asmstep Mode complete dbxx Loop
  263. waittof replaced with delay(2)  (Davids fix)
  264. memaccess after memrelase in gadgetslib fixed (fix hopefully all reddebug exit crashes)
  265. To debug a FPU program you must select FPU On in window Menu.(Status can save with prefs)
  266. Make sure you use the correct setting otherwise var trace/exec/eval give wrong numbers
  267. Click on var or intruction in sourcewindow show the value
  268. Updatet key help(See it for additional hotkeys)
  269. setting of a mem/disasm address show last adress (SHIFT+M=go back)(work without print command now)
  270. Link of disasemblerwin can save now (default is PC-2)
  271. SHIFT+CLick in regwin open memwin2 at reg addr
  272. Stop instructions can remove with add breakpoints 'remove stop'
  273. Add a vartrace opens the variable Window if it is not open
  274. Programcounter can now set by clicking on it
  275.  
  276.  
  277. Fixes 2.23
  278.  
  279. Newtypewin string get activate on start
  280. Breakpoint show with dontsort on at real place
  281. newtypelist show if pointer or not
  282. versionstring fixes
  283. enforcerhit when change screencolor fixed
  284. Problem with long varnames fixed(128 chars are allowed)
  285. fix with next/previous bookmark
  286.  
  287. News:
  288. Doubleclick in Instructionhelp show in wintitle the Lib/Instruction Num
  289. Basicvars are accessed now in Assembler with globalvar@(a5)
  290. If FPU is can use in debug Mode
  291. all searchstrings are case insensitive now (usefull because reddebug is very inconsistent)
  292.  
  293. Fixes 2.22
  294. Ped backdropwindow show now Cursor line
  295. wrong redraw of labellist
  296. ped can start from workbench without AB2
  297. fixed memtrash Bug if object buffer increase between 1 compile over object+lib Buffer
  298. Copy/Cut of chars >128 fixed
  299. wrong char on right side fixed
  300. fix optimizer constants bug (#interwidth*2);see bugs2.2.bb2 file
  301.  
  302.  
  303. News:
  304. Lists can work local
  305. unknown tokens are shown now as ????lib libnum/instructionnum
  306. F7 F8 previous/next entrie in labelview
  307.  
  308. .Fixes 2.21
  309. Color more than 4 work
  310. doubleredraw by click on bookmark fixed
  311. Backdropwindow Tooltype set by default.This help all who have no hotkey for
  312. window clicking to back
  313. fixed enforcerhit when no amiblitz.info exists
  314. Compiler /Editor work with more than 32768(65536) lines (test with 200000 Lines)
  315.  
  316. .News 2.21:
  317. 2 search words allowed
  318. word1 word2=word1 AND word2 must contain in line to get displayed
  319. Tooltype LIBFILE add (defaults to deflibs)
  320. This allow other deflibsfiles.The used deflibsfile is show in the
  321. Labelwindow Windowtiltle.
  322.  
  323. .Fixes 2.2b3
  324. Short Help work 2 chars right now
  325. Fix Crash when pubscreen is off
  326. Scroller refresh after hotclick fixed
  327. .News 2.2b2
  328.  
  329. Hotkey for Top/Button CTRL+CRSUP/crsdwn in menuentry add
  330. Undo current line  CTRL+U
  331. In labelview horizontal scroller add
  332. Tooltypes for amiblitz2.info:
  333. OLDSEARCH  dont jump to beginning in the search requester
  334. BACKDROP   use like old ted a texteditor backdropwindow
  335. DONTSORT   do not sort labelview
  336. Added fileappendix .ab2:This save in ascii format including .bak and .extra file
  337.  
  338. .Fixes 2.2b2
  339.  
  340. Ped
  341. fixes some refresh Problems with hotlist
  342. ped windows are open on the correct screen now
  343. Amiblitz
  344. Instruction Used fixed
  345. Instruction Maximum fixed
  346. additional spaces after deftype/macro fixed
  347. Features 2.21b1
  348.  end d0 return the register of d0 as returncode (d0 must EXACT written)
  349. .Fixes 2.21b1
  350. AMiblitz
  351.   dim >65536 work use largest dim on first place
  352.  
  353.   Window 1,0,0,400,200,!WinTags|20000,"",0,1 ;work now with new syntaxstyle
  354. new syntaxstyle is used now only with optimize >4
  355. make sure you use the new fpulib in userlibs/beta fpulib.obj
  356. This help 
  357.    a.l  LSL 2
  358.   but you must write brackets on macros and : after label
  359.   MAKE SURE THAT YOU CHANGE IN THE AMIBLITZ2.2 AND TED2 SOURCE THE OPTIMIZE 1
  360.   TO OPTIMIZE 5
  361.  
  362. numpars work correct now
  363. Ped
  364.  
  365. This is not beta and can replace the old
  366. A File ped.prefs is now used so no crashes through misunderstanding
  367.  of prefs files occur
  368. Please set your prefs again and store
  369.  
  370. Ped Crash fixed when no ted.menu exist ($1000000f)
  371.  
  372.  
  373.  
  374.